home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / MATHS / RLAB / RLAB125.ZIP / !RLaB / misc / plhelp / plsori < prev    next >
Text File  |  1996-04-09  |  501b  |  23 lines

  1. plsori:
  2.  
  3. Synopsis: Change the orientation of the plot window.
  4.  
  5. Syntax: plsori ( N )
  6.  
  7. Descriptin:
  8.  
  9.     Rotate the plot-window by N*(pi/2) from the default
  10.     orientation. N must be positive The orientation is not
  11.     supported by all graphics drivers. Some that are known to
  12.     support it are postscript, and X-windows.
  13.  
  14.     plsori must be used before the plot window is started. For
  15.     example: 
  16.  
  17.         plsori (3);
  18.         plstart (1,1,"ps");
  19.         plot (matrix);
  20.  
  21.     Will produce a postscript file with the plot in portrait mode.
  22.  
  23.